/* CSS Boiler Plate Start*/

* {
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  text-decoration: none;
  scroll-behavior: smooth;

}

/* CSS Boiler Plate End */


/* Defined Constant (Root) Start   */

:root {
  --text-color: #0000;
  --secondary-color: #5151ef;
  --main-color: white;
  --sub-text-color: #808080;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --pane-padding: 32px 100px;
  --primary-font-family: 'Poppins', sans-serif;
  --primary-font-weight: 450;
  --primary-font-style: normal;
  --primary-font-size: 22px;
  --box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);



}

/* Defined Constant (Root) End */

/* Stats Start  */

.stats-div {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--main-color);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-left: 100px;
  padding-right: 100px;
  background-color: var(--main-color);
  justify-content: space-between;






}



.stats {
  width: 280px;
  height: 250px;
  border-radius: 20px;
  background-color: var(--main-color);
  box-shadow: var(--box-shadow);
  align-content: center;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  transition: all 0.3s ease;


  .bx {
    font-size: 52px;
    color: var(--secondary-color);
    transition: none;
  }

  h3 {
    font-size: 52px;
    color: var(--dark-bg-color);

  }

  p {
    font-size: 18px;
    color: var(--sub-text-color);
  }
}


.stats:hover {
  transform: translateY(-5px);
}





.card--1 {
  width: 100%;
  max-width: 290px;
  height: 70px;
  background: var(--dark-bg-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: left;
  backdrop-filter: blur(10px);
  transition: 0.5s ease-in-out;
  position: fixed;
  bottom: 10%;
  
  z-index: 2000;

}


.card--1 {
  right: -350px; /* Hidden off screen initially */
  transition: right 0.6s ease-in-out, opacity 0.6s;
  opacity: 0;
}

/* Class to show the button after delay */
.card--1.show {
  right: 3%;
  opacity: 1;
}
.card--1:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.img img {
  width: 50px;
  height: 50px;
  margin-left: 10px;
  border-radius: 10px;

}

.card--1:hover>.img img {
  transition: 0.5s ease-in-out;


}

.textBox {
  width: calc(100% - 90px);
  margin-left: 10px;
  color: white;
  font-family: 'Poppins' sans-serif;
}

.textContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.span {
  font-size: 10px;
}

.h1 {
  font-size: 16px;
  font-weight: bold;
}

.p {
  font-size: 12px;
  font-weight: lighter;
}



/* Stats End  */


/* Responsive Start  */
@media (max-width:617px) {

  .stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .stats {
    width: 180px;
    height: 150px;

    .bx {
      font-size: 32px;
      color: var(--secondary-color);
    }

    h3 {
      font-size: 32px;
    }

    p {
      font-size: 12px;
      color: var(--sub-text-color);
    }



  }


  .card--1 {
    width: 100%;
    max-width: 220px;
    height: 65px;
    background: var(--dark-bg-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    backdrop-filter: blur(10px);
    transition: 0.5s ease-in-out;
    position: fixed;
    bottom: 10%;
    right: 3%;
    z-index: 2000;

  }

  .card--1:hover {
    cursor: pointer;
    transform: scale(1.005);
  }

  .img img {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    border-radius: 10px;

  }

  .card--1:hover>.img img {
    transition: 0.5s ease-in-out;


  }

  .textBox {
    width: calc(100% - 90px);
    margin-left: 10px;
    color: white;
    font-family: 'Poppins' sans-serif;
  }

  .textContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .span {
    font-size: 10px;
  }

  .h1 {
    font-size: 14px;
    font-weight: bold;
  }

  .p {
    font-size: 8px;
    font-weight: lighter;
  }


}


@media (max-width:400px) {

  .stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats {
    width: 160px;
    height: 130px;

    .bx {
      font-size: 28px;
      color: var(--secondary-color);
    }

    h3 {
      font-size: 28px;
    }

    p {
      font-size: 12px;
      color: var(--sub-text-color);
    }



  }


  .card--1 {
    width: 100%;
    max-width: 220px;
    height: 65px;
    background: var(--dark-bg-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    backdrop-filter: blur(10px);
    transition: 0.5s ease-in-out;
    position: fixed;
    bottom: 10%;
    right: 3%;
    z-index: 2000;

  }

  .card--1:hover {
    cursor: pointer;
    transform: scale(1.005);
  }

  .img img {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    border-radius: 10px;

  }

  .card--1:hover>.img img {
    transition: 0.5s ease-in-out;


  }

  .textBox {
    width: calc(100% - 90px);
    margin-left: 10px;
    color: white;
    font-family: 'Poppins' sans-serif;
  }

  .textContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .span {
    font-size: 10px;
  }

  .h1 {
    font-size: 14px;
    font-weight: bold;
  }

  .p {
    font-size: 8px;
    font-weight: lighter;
  }


}

/* Responsive End  */